home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / smfdoor / frmview.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-13  |  3KB  |  106 lines

  1. VERSION 5.00
  2. Begin VB.Form frmView 
  3.    BackColor       =   &H80000012&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "View"
  6.    ClientHeight    =   2295
  7.    ClientLeft      =   4785
  8.    ClientTop       =   2685
  9.    ClientWidth     =   1710
  10.    Icon            =   "frmView.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2295
  15.    ScaleWidth      =   1710
  16.    Begin VB.CommandButton cmdDone 
  17.       Caption         =   "Done"
  18.       Height          =   375
  19.       Left            =   120
  20.       MousePointer    =   10  'Up Arrow
  21.       TabIndex        =   0
  22.       Top             =   1680
  23.       Width           =   1335
  24.    End
  25.    Begin VB.Label lblPreferences 
  26.       BackColor       =   &H80000012&
  27.       Caption         =   "Preferences"
  28.       BeginProperty Font 
  29.          Name            =   "MS Sans Serif"
  30.          Size            =   12
  31.          Charset         =   0
  32.          Weight          =   700
  33.          Underline       =   0   'False
  34.          Italic          =   0   'False
  35.          Strikethrough   =   0   'False
  36.       EndProperty
  37.       ForeColor       =   &H00FF0000&
  38.       Height          =   495
  39.       Left            =   120
  40.       MousePointer    =   10  'Up Arrow
  41.       TabIndex        =   3
  42.       Top             =   1080
  43.       Width           =   1455
  44.    End
  45.    Begin VB.Label lblreload 
  46.       BackColor       =   &H80000012&
  47.       Caption         =   "Reload"
  48.       BeginProperty Font 
  49.          Name            =   "MS Sans Serif"
  50.          Size            =   12
  51.          Charset         =   0
  52.          Weight          =   700
  53.          Underline       =   0   'False
  54.          Italic          =   0   'False
  55.          Strikethrough   =   0   'False
  56.       EndProperty
  57.       ForeColor       =   &H00FF0000&
  58.       Height          =   495
  59.       Left            =   120
  60.       MousePointer    =   10  'Up Arrow
  61.       TabIndex        =   2
  62.       Top             =   600
  63.       Width           =   1215
  64.    End
  65.    Begin VB.Label lblRefresh 
  66.       BackColor       =   &H80000012&
  67.       Caption         =   "Refresh"
  68.       BeginProperty Font 
  69.          Name            =   "MS Sans Serif"
  70.          Size            =   12
  71.          Charset         =   0
  72.          Weight          =   700
  73.          Underline       =   0   'False
  74.          Italic          =   0   'False
  75.          Strikethrough   =   0   'False
  76.       EndProperty
  77.       ForeColor       =   &H00FF0000&
  78.       Height          =   375
  79.       Left            =   120
  80.       MousePointer    =   10  'Up Arrow
  81.       TabIndex        =   1
  82.       Top             =   120
  83.       Width           =   1215
  84.    End
  85. Attribute VB_Name = "frmView"
  86. Attribute VB_GlobalNameSpace = False
  87. Attribute VB_Creatable = False
  88. Attribute VB_PredeclaredId = True
  89. Attribute VB_Exposed = False
  90. Private Sub cmdDone_Click()
  91. frmView.Hide
  92. frmHElp.Show
  93. End Sub
  94. Private Sub lblPreferences_Click()
  95.     frmHelpPreferences.Show
  96.     frmView.Hide
  97. End Sub
  98. Private Sub lblRefresh_Click()
  99.     frmReload.Show
  100.     frmView.Hide
  101. End Sub
  102. Private Sub lblreload_Click()
  103.     frmReload.Show
  104.     frmView.Hide
  105. End Sub
  106.